Assembly: Keystone (in Keystone.dll)
public static TReduction Reduce<TItem, TReduction>(
this IEnumerable<TItem> itemsIn,
Func<TItem, TReduction, TReduction> byApplying
)
where TReduction : new(), >, Reduce(new, byApplying)
This language is not supported or no code example is available.
Type Parameters
- TItem
-
The type of the enumeration items to be aggregated.
- TReduction
-
The type of aggregation result. Since this type is instantiated inside this method to give the aggregation an initial value, it must have a public parameterless constructor.
Parameters
- itemsIn
-
Type: IEnumerable<TItem>
The enumeration to be aggregated.
- byApplying
-
Type: Func<TItem, TReduction, TReduction>
The aggregation function to be applied on each of the enumeration items, which are injected alongside with the previous iteration aggregation result, as arguments into this function when called.
Return Value
The aggregation cumulative result.Windows, Windows Server, OS X, macOS, iOS, tvOS, Android, Linux, AWS, Azure
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.